home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / PCSoftware / EditML Pro 1.0 / EditMLProv1.0Setup.exe / Main / booksTable.xsl < prev    next >
Encoding:
Text File  |  2000-10-09  |  503 b   |  16 lines

  1. <DIV xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  2. <TABLE style="table-layout:fixed" BORDER="2" CELLSPACING="2">
  3.   <col width="300"/>
  4.   <col width="300"/>
  5.   <col width="100"/>
  6.   <THEAD>
  7.     <TH>TITLE</TH><TH>AUTHOR</TH><TH>PRICE</TH></THEAD>
  8.   <xsl:for-each select="book">
  9.   <TR>
  10.     <TD><SPAN><xsl:value-of select="title"/></SPAN></TD>
  11.     <TD><SPAN><xsl:value-of select="author"/></SPAN></TD>
  12.     <TD><SPAN><xsl:value-of select="price"/></SPAN></TD>
  13.   </TR>
  14.   </xsl:for-each>
  15. </TABLE>
  16. </DIV>